home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload Trio 2 / Shareware Overload Trio Volume 2 (Chestnut CD-ROM).ISO / dir37 / freeshel.zip / FREESHEL.DOC < prev    next >
Text File  |  1988-04-30  |  3KB  |  74 lines

  1.  
  2. *********************************************************************
  3.  
  4.                           FREE SHELL
  5.  
  6. *********************************************************************
  7.  
  8.    For directory navigation, file managing and copying or deleting
  9.    by groups,  PC MAGAZINE'S three free utilities, RN, DR, CO are
  10.    great in my opinion.  The following procedure will improve their
  11.    speed and ease of use by creating a small 13k ram disk which is
  12.    loaded up automatically by your autoexec.bat file.  The Ansi.sys
  13.    driver will be used to redefine five function keys for single
  14.    keystroke operation at the DOS prompt.
  15.  
  16.           F6  will cause the screen to clear
  17.           F7  will call CO
  18.           F8  will execute a dos directory listing
  19.           F9  will call RN
  20.           F10  will call DR
  21.  
  22.    These directions assume you have one hard disk "C", your DOS version
  23.    contains the VDISK driver or a similiar substitute and you have a
  24.    directory called DOS where the external commands and drivers are
  25.    located. The procedure can be easily altered for use on dual floppy
  26.    systems.
  27.  
  28.  
  29.   1. Copy these utilities to your DOS directory.
  30.  
  31.      DR.COM     VOL.6 NUMBER 14
  32.  
  33.      RN.COM      "    "    " 16
  34.  
  35.      CO.COM      "    "    " 21
  36.  
  37.  
  38.   2. Add the following lines to your config.sys file.
  39.  
  40.      DEVICE C:\DOS\ANSI.SYS
  41.      DEVICE C:\DOS\VDISK.SYS 13 128 6
  42.      BUFFERS = 20
  43.  
  44.  
  45.   3. Add the following lines to your autoexec.bat file.
  46.  
  47.      ECHO ON
  48.      PROMPT $e[0;64;"CLS";13p
  49.      PROMPT $e[0;65;"D:\CO";13p
  50.      PROMPT $e[0;66;"DIR";13p
  51.      PROMPT $e[0;67;"D:\RN";13p
  52.      PROMPT $e[0;68;"D:\DR";13p
  53.      ECHO OFF
  54.      CLS
  55.      PATH D:\;C:\  { add normal path statement }
  56.      PROMPT  $P$G  { or normal prompt statement }
  57.      COPY C:\DOS\RN.COM D: > NUL
  58.      COPY C:\DOS\DR.COM D: > NUL
  59.      COPY C:\DOS\CO.COM D: > NUL
  60.      C:\DOS\RN C:/I
  61.      CLS
  62.  
  63.   4. Now do a Ctrl-Alt-Del and try it out, it should make about
  64.      80% of what you do at the dos prompt much easier.  The reason
  65.      I like this method is you can customize it to your own needs,
  66.      try putting in your most common batch files or favorite utilities.
  67.      For an excellant discussion of the Ansi driver and redefining
  68.      function keys from a com file you make with Debug see the Public
  69.      Domain file USEANSI.ARC by C. Scott Giles.
  70.  
  71.                             Enjoy,
  72.                             Patrick O. Gallagher
  73.                             Seattle, WA.
  74.